CRMContentBlock object

This object is a simple block that takes a text string and displays it on the page. Use this object in conjunction with other blocks on a screen.

Syntax to create a content block:

// Create a content block.
Content = CRM.GetBlock("content");
Content.contents = "This is the contents";
CRM.AddContent(Container.Execute());
Response.Write(CRM.GetPage());